home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / internet / sweeper / samples / progress / makefile next >
Makefile  |  1995-12-05  |  658b  |  29 lines

  1. # Nmake macros for building Windows 32-Bit apps
  2.  
  3. TARGETOS=BOTH
  4. APPVER=4.0
  5.  
  6. all:progress.exe
  7.  
  8. !include <win32.mak>
  9.  
  10. # Update the resource if necessary
  11.  
  12. progress.res: progress.rc resource.h
  13.     $(rc) $(rcvars) $(rcflags) progress.rc
  14.  
  15. # Update the object file if necessary
  16.  
  17. progress.obj: progress.cpp
  18.     $(cc) $(cflags) $(cvars) $(cdebug) progress.cpp
  19.  
  20. # Update the executable file if necessary, and if so, add the resource back in.
  21.  
  22. progress.exe: progress.obj progress.res
  23.     $(link) $(ldebug) $(lflags) -out:progress.exe progress.obj progress.res $(olelibs) urlmon.lib uuid3.lib
  24.  
  25. clean:
  26.     del *.exe
  27.     del *.obj
  28.     del *.res
  29.